/*
* Copyright 2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.yarn.boot;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.HttpClient;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.apache.http.impl.client.HttpClientBuilder;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.autoconfigure.security.SecurityProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
import org.springframework.security.config.http.SessionCreationPolicy;
import org.springframework.web.client.RestTemplate;
import org.springframework.yarn.YarnSystemConstants;
/**
* {@link EnableAutoConfiguration Auto-configuration} for Spring {@link RestTemplate} handling
* various settings automatically like security, etc.
*
* @author Janne Valkealahti
*
*/
@Configuration
@ConditionalOnClass({ HttpClient.class, RestTemplate.class, SessionCreationPolicy.class })
public class YarnRestTemplateAutoConfiguration {
@ConditionalOnProperty(prefix = "security.basic", name = "enabled", havingValue="true")
@ConditionalOnMissingBean(name = YarnSystemConstants.DEFAULT_ID_RESTTEMPLATE)
public static class BasicAuthConfig {
@Autowired
private SecurityProperties securityProperties;
@Bean(name = YarnSystemConstants.DEFAULT_ID_RESTTEMPLATE)
public RestTemplate restTemplate() {
HttpClientBuilder builder = HttpClientBuilder.create();
UsernamePasswordCredentials credentials = new UsernamePasswordCredentials(securityProperties.getUser()
.getName(), securityProperties.getUser().getPassword());
BasicCredentialsProvider credentialsProvider = new BasicCredentialsProvider();
credentialsProvider.setCredentials(new AuthScope(null, -1, null), credentials);
builder.setDefaultCredentialsProvider(credentialsProvider);
HttpClient httpClient = builder.build();
return new RestTemplate(new HttpComponentsClientHttpRequestFactory(httpClient));
}
}
}